﻿// This is a script for Neptunia. 

debug = "On:" + Wiimote1.Exists + " Wiimote Battery Level:" + Wiimote1.Battery

   //Movement controls (use the left joystick on the Classic Pro) 

Key.W = Classic.LeftStickY < -0.4

Key.S = Classic.LeftStickY > 0.4

Key.A = Classic.LeftStickX < -0.4

Key.D = Classic.LeftStickX > 0.4

Key.Up = Classic.Up     // Can also zoom camera in 
Key.Down = Classic.Down  // Can also zoom camera out 
Key.Left = Classic.Left
Key.Right = Classic.Right 

Mouse.LeftButton  = Classic.L
Mouse.RightButton = Classic.R  


  // Camera + Flight Controls

Key.NUMPAD8 = Wiimote.Up

Key.NUMPAD5 = Wiimote.Down

 Key.NUMPAD4 = Wiimote.Left

 Key.NUMPAD6 = Wiimote.Right


 Key.K = Classic.Y				 	// Attack, Items 
Key.L = Classic.B					// Jump, Cancel, Defend or Escape 
Key.Space = Classic.X				// Search for Treasure, Exe Drive 
Key.I = Classic.ZL					// Show Details 
Key.O = Classic.Plus					// Open Menu  
Key.Enter = Classic.A					// Confirm, Attack, Items, 
Key.Tab  = Classic.Home                      		                // Display Map, Config  
